@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400;500;600;700&family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto+Slab:wght@100;200;300;400;500;600;700;800;900&display=swap');

body {
    /* background: url(/images/background.jpg) no-repeat; */
    background-color: dimgray;
    background-size: cover;
    color: white;
    font-family: 'Roboto Slab', serif;
}

@keyframes pulse {
    0% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1.0);
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
  }
  
::-webkit-scrollbar-track {
    background: rgb(39, 39, 39);
  }
  
::-webkit-scrollbar-thumb {
    background: #F34041;
}
  
::-webkit-scrollbar-thumb:hover {
    background: #d73a3a;
  }

.wrapper {
    display: grid;
    width: 100%;
    height: 100vh;
    grid-template-columns: 50% 50%;
    grid-template-rows: repeat(5, 1fr);
}

.left--Content {
    position: relative;
    width: 100%;
    grid-column: 1;
    grid-row: 2/5;
    overflow-y: auto;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.clanOptions {
    display: flex;
    flex-flow: row wrap;
    justify-content:space-around;
}


.clanOptions .container {
    position: relative;
    flex-basis: 25%;
    min-width: 50px;
    min-height: 50px;
    height: fit-content;
    box-sizing: border-box;
    margin-top: 20px;
    margin-left: 5px;
    filter: drop-shadow(5px 4px 4px rgba(0, 0, 0, 0.5));
    display: block;
}


.clanOptions .container img {
    width: 100%;
}

.clanOptions .container:hover{
    cursor: pointer;
    animation: pulse 1s;
} 

.overlay{
    display:none;
    text-align: center;
}

.clanOptions .container:hover .overlay {
    position:absolute;
    top:0;
    left:0;
    display: flex;
    flex-direction:column;
    justify-content:center;
    border-radius: 5px;
    font-size: calc(1vh + 1vw);
    width:100%;
    height:100%;
    opacity:0.95;
}



/* .clanOptions img {
    background-color: transparent;
    flex-basis: 25%;
    min-width: 50px;
    min-height: 50px;
    height: fit-content;
    margin-top: 20px;
    margin-left: 5px;
    mix-blend-mode: normal;
    filter: drop-shadow(5px 4px 4px rgba(0, 0, 0, 0.5));
}*/

.right--Content {
    position: relative;
    grid-column: 2;
    grid-row: 2/5;
    margin: 0 auto;
    width: 90%;
    height: 100%;
    padding: 0.5em 1.5em 1.5em 1.5em;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.8);
    box-shadow: 3px 4px 4px 1px rgba(0, 0, 0, 0.25);
    border-radius: 0px 0px 50px 50px;
    overflow-y: auto;
    font-family: 'Montserrat', sans-serif;
}

.btn--ok {
    display: none;
	-moz-box-shadow:inset 0px 1px 0px 0px #f5978e;
	-webkit-box-shadow:inset 0px 1px 0px 0px #f5978e;
	box-shadow:inset 0px 1px 0px 0px #f5978e;
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #f24537), color-stop(1, #c62d1f));
	background:-moz-linear-gradient(top, #f24537 5%, #c62d1f 100%);
	background:-webkit-linear-gradient(top, #f24537 5%, #c62d1f 100%);
	background:-o-linear-gradient(top, #f24537 5%, #c62d1f 100%);
	background:-ms-linear-gradient(top, #f24537 5%, #c62d1f 100%);
	background:linear-gradient(to bottom, #f24537 5%, #c62d1f 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f24537', endColorstr='#c62d1f',GradientType=0);
	background-color:#f24537;
	-webkit-border-radius:6px;
	-moz-border-radius:6px;
	border-radius:6px;
	border:1px solid #d02718;
	cursor:pointer;
	color:#ffffff;
	font-family:Arial;
	font-size:15px;
	font-weight:bold;
	padding:6px 24px;
	text-decoration:none;
	text-shadow:0px 1px 0px #810e05;
    grid-column: 1;
    grid-row: 5;
    height: fit-content;
    justify-self: center;
    align-self: center;
}
.btn--ok:hover {
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #c62d1f), color-stop(1, #f24537));
	background:-moz-linear-gradient(top, #c62d1f 5%, #f24537 100%);
	background:-webkit-linear-gradient(top, #c62d1f 5%, #f24537 100%);
	background:-o-linear-gradient(top, #c62d1f 5%, #f24537 100%);
	background:-ms-linear-gradient(top, #c62d1f 5%, #f24537 100%);
	background:linear-gradient(to bottom, #c62d1f 5%, #f24537 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#c62d1f', endColorstr='#f24537',GradientType=0);
	background-color:#c62d1f;
}
.btn--ok:active {
	position:relative;
	top:1px;
}